Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #304

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^3.12.0 -> ^3.16.0 age adoption passing confidence
@apollo/client (source) ^3.12.3 -> ^3.12.8 age adoption passing confidence
@floating-ui/react (source) ^0.27.2 -> ^0.27.3 age adoption passing confidence
@fontsource-variable/inter (source) 5.1.0 -> 5.1.1 age adoption passing confidence
@graphql-codegen/cli (source) ^5.0.3 -> ^5.0.4 age adoption passing confidence
@graphql-codegen/typescript-operations (source) ^4.4.0 -> ^4.4.1 age adoption passing confidence
@graphql-codegen/typescript-resolvers (source) ^4.4.1 -> ^4.4.2 age adoption passing confidence
@lingui/cli ^5.1.1 -> ^5.1.2 age adoption passing confidence
@lingui/core 5.1.1 -> 5.1.2 age adoption passing confidence
@lingui/macro 5.1.1 -> 5.1.2 age adoption passing confidence
@lingui/react 5.1.1 -> 5.1.2 age adoption passing confidence
@lingui/swc-plugin 5.0.1 -> 5.0.2 age adoption passing confidence
@next/eslint-plugin-next (source) ^15.1.0 -> ^15.1.6 age adoption passing confidence
@polkadot/apps-config (source) ^0.146.1 -> ^0.148.1 age adoption passing confidence
@tailwindcss/forms ^0.5.9 -> ^0.5.10 age adoption passing confidence
@tailwindcss/typography ^0.5.15 -> ^0.5.16 age adoption passing confidence
@tanstack/react-query (source) ^5.62.7 -> ^5.65.1 age adoption passing confidence
@types/node (source) ^22.10.2 -> ^22.12.0 age adoption passing confidence
@types/react (source) 19.0.1 -> 19.0.8 age adoption passing confidence
@types/react-dom (source) ^19.0.2 -> ^19.0.3 age adoption passing confidence
@vercel/node (source) ^5.0.0 -> ^5.0.4 age adoption passing confidence
echarts (source) ^5.5.1 -> ^5.6.0 age adoption passing confidence
eslint (source) ^9.17.0 -> ^9.19.0 age adoption passing confidence
eslint-config-next (source) ^15.1.0 -> ^15.1.6 age adoption passing confidence
eslint-plugin-react ^7.37.2 -> ^7.37.4 age adoption passing confidence
fast-glob ^3.3.2 -> ^3.3.3 age adoption passing confidence
ioredis ^5.4.1 -> ^5.4.2 age adoption passing confidence
next-axiom ^1.9.0 -> ^1.9.1 age adoption passing confidence
postcss (source) ^8.4.49 -> ^8.5.1 age adoption passing confidence
react-toastify ^11.0.2 -> ^11.0.3 age adoption passing confidence
swr (source) ^2.2.5 -> ^2.3.0 age adoption passing confidence
tailwindcss (source) ^3.4.16 -> ^3.4.17 age adoption passing confidence
tsup (source) ^8.3.5 -> ^8.3.6 age adoption passing confidence
turbo (source) 2.3.3 -> 2.3.4 age adoption passing confidence
typescript (source) 5.7.2 -> 5.7.3 age adoption passing confidence
viem (source) 2.21.55 -> 2.22.17 age adoption passing confidence
wagmi (source) 2.14.3 -> 2.14.9 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v3.16.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.15.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.14.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.13.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.12.2

Compare Source

   🚀 Features
    View changes on GitHub

v3.12.1

Compare Source

No significant changes

    View changes on GitHub
apollographql/apollo-client (@​apollo/client)

v3.12.8

Compare Source

Patch Changes

v3.12.7

Compare Source

Patch Changes

v3.12.6

Compare Source

Patch Changes

v3.12.5

Compare Source

Patch Changes
  • #​12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

Migrating from <= v3.12.4

If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

-declare module "@&#8203;apollo/client" {
-  interface DataMasking {
-    mode: "unmask"
-  }
-}

If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

declare module "@&#8203;apollo/client" {
  interface DataMasking {
-    enabled: true
+    mode: "preserveTypes"
  }
}

If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

declare module "@&#8203;apollo/client" {
  interface DataMasking {
    mode: "unmask";
  }
}

v3.12.4

Compare Source

Patch Changes
  • #​12236 4334d30 Thanks @​charpeni! - Fix an issue with refetchQueries where comparing DocumentNodes internally by references could lead to an unknown query, even though the DocumentNode was indeed an active query—with a different reference.
floating-ui/floating-ui (@​floating-ui/react)

v0.27.3

Compare Source

Patch Changes
  • feat(FloatingFocusManager): accept FloatingRootContext as the context prop
  • fix(useListNavigation): check for virtual pointer on pointerenter
  • refactor: use jsx runtime
  • Update dependencies: @floating-ui/[email protected]
fontsource/font-files (@​fontsource-variable/inter)

v5.1.1

Compare Source

dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v5.0.4

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript-operations)

v4.4.1

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript-resolvers)

v4.4.2

Compare Source

Patch Changes
lingui/js-lingui (@​lingui/cli)

v5.1.2

Compare Source

Note: Version bump only for package js-lingui-workspaces

lingui/swc-plugin (@​lingui/swc-plugin)

v5.0.2

Compare Source

What's Changed

Full Changelog: lingui/swc-plugin@5.0.1...5.0.2

vercel/next.js (@​next/eslint-plugin-next)

v15.1.6

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • fix: don't memory-leak promises passed to waitUntil (#​75041)
  • backport: fix prerender issue with intercepting routes + generateStaticParams (#​75170)
Credits

Huge thanks to @​lubieowoce and @​ztanner for helping!

v15.1.5

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Fix missing revalidate with notFound() (#​75009)
  • fix: when metadatabase is set we should not warn (#​74840)
  • Fix @​vercel/og license SPDX expression (#​74745)
  • fix: ts language server rule metadata should allow null (#​74704)
  • fix: eslint rule of using img in metadata routes (#​74864)
  • Fix presentation when onerror receives an event without error (#​74643)
  • fix fetch lock not being consistently released #​74623 (#​75028)
Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

v15.1.4

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • backport: force module format for virtual client-proxy (#​74608)
  • Fix prerender tags when notFound is called (#​74607)
  • Use provided waitUntil for pending revalidates (#​74604)
  • Feature: next/image: add support for images.qualities in next.config (#​74588)
  • Chore: docs: add missing search: '' on remotePatterns (#​74587)
  • Chore: docs: update version history of next/image (#​73923) (#​74570)
  • Chore: next/image: improve imgopt api bypass detection for unsupported images (#​74569)
Credits

Huge thanks to @​ and @​ for helping!

v15.1.3

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Retry manifest file loading only in dev mode: #​73900
  • Use shared worker for lint & typecheck steps: #​74154
Credits

Huge thanks to @​unstubbable and @​ztanner for helping!

v15.1.2

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
Credits

Huge thanks to @​ztanner for helping!

v15.1.1

Compare Source

polkadot-js/apps (@​polkadot/apps-config)

v0.148.1

Compare Source

Contributed:

v0.147.1

Compare Source

Contributed:

Changes:

tailwindlabs/tailwindcss-forms (@​tailwindcss/forms)

v0.5.10

Compare Source

Fixed
  • Support installing with beta versions of Tailwind CSS v4 (#​163)
tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.16

Compare Source

Fixed
  • Suppo

Configuration

📅 Schedule: Branch creation - "before 1am" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Dec 23, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
analytics ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
gauge ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
market ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
path-finder ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
pool ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
referrals ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
swap ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
token-price ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm
zenlink-stats ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 29, 2025 6:00pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ec80f39 to aa515ab Compare December 23, 2024 15:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa515ab to 14549f6 Compare December 23, 2024 20:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8f2e06c to 66e55df Compare January 29, 2025 13:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants